home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-05-28 | 1.8 KB | 63 lines | [TEXT/CWIE] |
- /*
- * @(#)InterruptedIOException.java 1.13 98/06/29
- *
- * Copyright 1995-1998 by Sun Microsystems, Inc.,
- * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
- * All rights reserved.
- *
- * This software is the confidential and proprietary information
- * of Sun Microsystems, Inc. ("Confidential Information"). You
- * shall not disclose such Confidential Information and shall use
- * it only in accordance with the terms of the license agreement
- * you entered into with Sun.
- */
-
- package java.io;
-
- /**
- * Signals that an I/O operation has been interrupted. An
- * <code>InterruptedIOException</code> is thrown to indicate that an
- * input or output transfer has been terminated because the thread
- * performing it was terminated. The field {@link #bytesTransferred}
- * indicates how many bytes were successfully transferred before
- * the interruption occurred.
- *
- * @author unascribed
- * @version 1.13, 06/29/98
- * @see java.io.InputStream
- * @see java.io.OutputStream
- * @see java.lang.Thread#interrupt()
- * @since JDK1.0
- */
- public
- class InterruptedIOException extends IOException {
- /**
- * Constructs an <code>InterruptedIOException</code> with
- * <code>null</code> as its error detail message.
- */
- public InterruptedIOException() {
- super();
- }
-
- /**
- * Constructs an <code>InterruptedIOException</code> with the
- * specified detail message. The string <code>s</code> can be
- * retrieved later by the
- * <code>{@link java.lang.Throwable#getMessage}</code>
- * method of class <code>java.lang.Throwable</code>.
- *
- * @param s the detail message.
- */
- public InterruptedIOException(String s) {
- super(s);
- }
-
- /**
- * Reports how many bytes had been transferred as part of the I/O
- * operation before it was interrupted.
- *
- * @serial
- */
- public int bytesTransferred = 0;
- }
-